///
import { TcResponse } from "../../travelcloud";
declare const OutBoundPage: ({ tourTypeData, obPriceRules, obDepositRules }: {
tourTypeData: TcResponse;
obPriceRules: any;
obDepositRules: any;
}) => JSX.Element;
export default OutBoundPage;
export declare function getStaticProps(context: any): Promise<{
props: {
tourTypeData: any;
obPriceRules: any;
obDepositRules: any;
};
revalidate: number;
}>;
export declare function getStaticPaths(): Promise<{
paths: any[];
fallback: boolean;
}>;